home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mlocate.postinst < prev    next >
Text File  |  2009-04-29  |  543b  |  22 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. GROUP="mlocate"
  6.  
  7. if [ "$1" = "configure" ]; then
  8.     update-alternatives --install /usr/bin/locate locate /usr/bin/mlocate 80 \
  9.     --slave /usr/share/man/man1/locate.1.gz locate.1.gz /usr/share/man/man1/mlocate.1.gz \
  10.     --slave /usr/bin/updatedb updatedb /usr/bin/updatedb.mlocate
  11.  
  12.     if ! sg "$GROUP" true 2>/dev/null; then
  13.         addgroup --system "$GROUP"
  14.     fi
  15.  
  16.     if ! dpkg-statoverride --list /usr/bin/mlocate >/dev/null 2>&1; then
  17.         dpkg-statoverride --update --add root "$GROUP" 2755 /usr/bin/mlocate 
  18.     fi
  19. fi
  20.  
  21.  
  22.